home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #11 / Amiga Plus CD - 2004 - No. 11.iso / AmiSoft / Dev / misc / temgen.lha / Temgen / tg-0.11 / stack.h < prev    next >
C/C++ Source or Header  |  2002-12-18  |  162b  |  11 lines

  1. #ifndef __stack_h_
  2. #define __stack_h_
  3.  
  4. /* temporary objects stack manipulation */
  5.  
  6. void stinit( int stack );
  7. int stalloc( void );
  8. void stfree( int obj );
  9.  
  10. #endif
  11.